From c0b9da693c78c3374f3db438dfbf747835100ac9 Mon Sep 17 00:00:00 2001 From: "kaf24@firebug.cl.cam.ac.uk" Date: Wed, 22 Feb 2006 19:40:19 +0100 Subject: [PATCH] Cset 8916 missed two extra pages for VT-i domain and thus breaks domain creation. This fixes it. Signed-off-by: Kevin Tian --- tools/python/xen/xend/image.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/python/xen/xend/image.py b/tools/python/xen/xend/image.py index f333c2ed4f..fb56617188 100644 --- a/tools/python/xen/xend/image.py +++ b/tools/python/xen/xend/image.py @@ -386,8 +386,8 @@ class HVMImageHandler(ImageHandler): extra_pages = 0 if os.uname()[4] == 'ia64': page_kb = 16 - # ROM size for guest firmware - extra_pages = 1024 + # ROM size for guest firmware, ioreq page and xenstore page + extra_pages = 1024 + 2 return mem + extra_pages * page_kb def register_shutdown_watch(self): -- 2.30.2